home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_jade.idb / usr / freeware / include / sp / lib / EquivClass.h.z / EquivClass.h
Encoding:
C/C++ Source or Header  |  1999-07-21  |  440 b   |  26 lines

  1. // Copyright (c) 1994 James Clark
  2. // See the file COPYING for copying permission.
  3.  
  4. #ifndef EquivClass_INCLUDED
  5. #define EquivClass_INCLUDED 1
  6.  
  7. #include "Link.h"
  8. #include "types.h"
  9. #include "ISet.h"
  10.  
  11. #ifdef SP_NAMESPACE
  12. namespace SP_NAMESPACE {
  13. #endif
  14.  
  15. struct EquivClass : public Link {
  16.   EquivClass(unsigned in = 0) : inSets(in) { }
  17.   ISet<Char> set;
  18.   unsigned inSets;
  19. };
  20.  
  21. #ifdef SP_NAMESPACE
  22. }
  23. #endif
  24.  
  25. #endif /* not EquivClass_INCLUDED */
  26.